10
|
How do I bring/ensure a specified face to the front

With AxTreeCube1
.IdentifyFace = EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption
.VisibleFace = EXTREECUBELib.FaceEnum.exTopFace
End With
|
9
|
How do I bring/ensure a specified face to the front

With AxTreeCube1
.IdentifyFace = EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption
.EnsureVisibleFace(EXTREECUBELib.FaceEnum.exTopFace)
End With
|
8
|
It sounds like the BackColor property does nothing

With AxTreeCube1
.BackColor = RGB(255,0,0)
.Transparent = 50
End With
|
7
|
Is there any property to identify the faces I can fill in

With AxTreeCube1
.IdentifyFace = EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption
End With
|
6
|
How can I prevent scrolling the control inside a face once the user rolls the mouse wheel
With AxTreeCube1
.OnMouseWheel = EXTREECUBELib.OnMouseWheelEnum.exMouseWheelNothing
End With
|
5
|
Can I navigate through the faces 0 to 3 only, even with the keyboard
With AxTreeCube1
.EnsureVisibleFaces = "0,1,2,3"
.AllowRotate = EXTREECUBELib.RotateEnum.exRotateRight Or EXTREECUBELib.RotateEnum.exRotateLeft
.IdentifyFace = EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption
.EnsureVisibleFaceOnDblClick = False
End With
|
4
|
It sounds like the BackColor property does nothing

With AxTreeCube1
.BackColor = RGB(255,0,0)
.ShowAs = EXTREECUBELib.ShowAsEnum.exOrthographic
.AlwaysEnsureVisibleFace = EXTREECUBELib.EnsureVisibleFaceEnum.exDisableEnsureVisibleFace
.RotX = 0.328184
.RotY = 0.967723
End With
|
3
|
Is it possible to let the control shows/rotates just the left/right side
With AxTreeCube1
.AllowRotate = EXTREECUBELib.RotateEnum.exRotateRight Or EXTREECUBELib.RotateEnum.exRotateLeft
End With
|
2
|
How can I disable changing the view if the user presses SPACE or digit keys
With AxTreeCube1
.AllowEnsureVisibleFaceOnKey = EXTREECUBELib.AllowEnsureVisibleFaceOnKeyEnum.exEnsureVisibleFaceOnKeyDisabled
End With
|
1
|
I've noticed that I can not show the part of the control as I drag, once I release the mouse button

With AxTreeCube1
.IdentifyFace = EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName Or EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption
.AlwaysEnsureVisibleFace = EXTREECUBELib.EnsureVisibleFaceEnum.exDisableEnsureVisibleFace
End With
|